home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #11 / Amiga Plus CD - 2004 - No. 11.iso / AmiSoft / Text / print / HPDJ900Src.lha / global.h < prev    next >
C/C++ Source or Header  |  2004-05-21  |  936b  |  33 lines

  1. /* HP Deskjet 900C */
  2.  
  3. /* Headers */
  4.  
  5. #include <exec/types.h>
  6. #include <exec/nodes.h>
  7. #include <exec/lists.h>
  8. #include <exec/memory.h>
  9. #include <proto/exec.h>
  10.  
  11. #include <devices/printer.h>
  12. #include <devices/prtbase.h>
  13. #include <devices/prtgfx.h>
  14.  
  15.  
  16.  
  17. /* Prototypes */
  18.  
  19. LONG StripWhiteSpace(UBYTE * source,LONG size);
  20. LONG CompressMethod2(UBYTE * src,UBYTE * dest,LONG count);
  21. void SetDensity(ULONG density);
  22. int DoSpecial(UWORD *cmd, char out[], BYTE *v, BYTE *c, BYTE *f, UBYTE p[]);
  23. void numberString(UBYTE p, int x, char outputBuffer[]);
  24. int ConvFunc(char *buf, char ch,int flag);
  25. int Close(union printerIO *ior);
  26. int Render(long ct, long x, long y, long status);
  27. VOID CorrectColours(UBYTE * gamma_table, UBYTE *colors[], ULONG width);
  28. int DumpBWPrint(UBYTE *colors[],ULONG BufSize);
  29. int DumpColorPrint(UBYTE *colors[],ULONG BufSize);
  30. void Transfer(struct PrtInfo *PInfo, ULONG y, UBYTE *colors[], UWORD RowSize, UWORD NumColorBuf);
  31.  
  32.  
  33.